.reference-container {
    margin-top: 30px;
    margin-bottom: 20px;
}

.reference-container--small {
    margin-top: 30px;
    margin-bottom: -50px;
}

.reference-container__title {
    font-size: 30px;
    font-weight: 500;
    color: #303030;
    line-height: 50px;
}

.reference-item {
    padding-bottom: 30px;
}

.reference__name {
    font-size: 15px;
    font-weight: 500;
    color: #303030;
    margin-bottom: 5px;
}

.reference__description {
    min-height: 64px;
}

.reference__description p {
    line-height: 26px;
    font-size: 13px;
    font-weight: 400;
    color: #303030;
}

/* Select btn with dropdown */
.select-btn__container {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
}

.select-btn {
    display: flex;
    align-items: center;
    text-align: center;

    height: 50px;
    width: 280px;
    margin-top: 25px;
    margin-bottom: 60px;
    padding-left: 12px;
    padding-right: 12px;

    border: 1px solid #6C757D;
    border-radius: 37px;
    font-size: 16px;
    color: #4E4E4E;
    background-color: #fff;
    cursor: pointer;

    transition: background 0.2s ease-in-out;
}

.select-btn:focus,
.select-btn[aria-expanded="true"] {
    background: #fff;
    border: 1px solid #6C757D;
    border-radius: 37px;
    box-shadow: none;
}

.select-btn:focus,
.select-btn:active {
    outline: none;
    border: 1px solid #6C757D;
}

.select-btn::after {
    display: none !important;
}

.select-btn__txt {
    flex-grow: 1;
    text-align: center;
    font-weight: 400;
}

.select-btn__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-menu {
    background: #fff;
    border: 1px solid rgba(108, 117, 125, 0.02);
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.10);
    width: 280px;
    min-width: unset;
    border-radius: 24px;
    padding: 0;
    overflow: hidden;
}

.dropdown-item {
    padding: 12px 15px;
    text-align: center;
    font-size: 16px;
    color: #4E4E4E;
}

.dropdown-item:hover,
.dropdown-item:active {
    background-color: #fff;
    color: black;
}

/* See more btn */
.see-more-btn__container {
    text-align: center !important;
    margin-top: 40px;
}

.see-more-btn {
    width: 200px;
    height: 40px;
    margin: 0 auto;
    text-align: center;
    border: solid 1px #6C757D !important;
    border-radius: 100px;
    background-color: #fff !important;
    text-decoration: none;
    color: #6C757D !important;
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}

.see-more-btn:active,
.see-more-btn:focus {
    border: solid 1px #6C757D !important;
    background-color: #fff !important;
    color: #6C757D !important;
    outline: none;
}

.see-more-btn:hover {
    background-color: #6C757D !important;
    color: #fff !important;
    border: solid 1px #6C757D !important;
    text-decoration: none;
    cursor: pointer;
}

@media only screen and (max-width: 1200px) {
    .reference__description {
        min-height: 80px;
    }
    
    .reference__description p {
        line-height: 19px;

    }
}

@media only screen and (max-width: 576px) {
    .reference__description {
        min-height: 60px;
    }
}
